home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / GrowBoxDock / Sources / English.lproj / Localize.r < prev    next >
Encoding:
Text File  |  2001-01-30  |  25.6 KB  |  405 lines

  1. /*
  2.     File:        Localize.r
  3.  
  4.     Contains:    all strings for SimpleText that need to be localized.  Nothing in a .r file outside
  5.                 of this file should be language specific.
  6.  
  7.     Version:    Mac OS X
  8.  
  9.     Disclaimer:    IMPORTANT:  This Apple software is supplied to you by Apple Computer, Inc.
  10.                 ("Apple") in consideration of your agreement to the following terms, and your
  11.                 use, installation, modification or redistribution of this Apple software
  12.                 constitutes acceptance of these terms.  If you do not agree with these terms,
  13.                 please do not use, install, modify or redistribute this Apple software.
  14.  
  15.                 In consideration of your agreement to abide by the following terms, and subject
  16.                 to these terms, Apple grants you a personal, non-exclusive license, under Apple’s
  17.                 copyrights in this original Apple software (the "Apple Software"), to use,
  18.                 reproduce, modify and redistribute the Apple Software, with or without
  19.                 modifications, in source and/or binary forms; provided that if you redistribute
  20.                 the Apple Software in its entirety and without modifications, you must retain
  21.                 this notice and the following text and disclaimers in all such redistributions of
  22.                 the Apple Software.  Neither the name, trademarks, service marks or logos of
  23.                 Apple Computer, Inc. may be used to endorse or promote products derived from the
  24.                 Apple Software without specific prior written permission from Apple.  Except as
  25.                 expressly stated in this notice, no other rights or licenses, express or implied,
  26.                 are granted by Apple herein, including but not limited to any patent rights that
  27.                 may be infringed by your derivative works or by other works in which the Apple
  28.                 Software may be incorporated.
  29.  
  30.                 The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
  31.                 WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
  32.                 WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  33.                 PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
  34.                 COMBINATION WITH YOUR PRODUCTS.
  35.  
  36.                 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
  37.                 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  38.                 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  39.                 ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
  40.                 OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT
  41.                 (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN
  42.                 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  43.  
  44.     Copyright © 1993-2001 Apple Computer, Inc., All Rights Reserved
  45. */
  46.  
  47. // Basic application information
  48. #define APPNAME                    "SimpleText"
  49.  
  50. // Version number is "MAJOR.MINORHIGHNIBBLE.MINORLONIBBLE"
  51. #define    MAJORVERSION            0x01
  52. #define MINORVERSION            0x40
  53. #define STAGE                    final
  54. #define RELEASE                    0
  55. #define SHORTVERSIONSTRING        "1.4"
  56. #define COPYRIGHTNOTICE            " © Apple Computer, Inc. 1985-1998"
  57.  
  58. #define COUNTRYVERSION            verUS
  59. #define LONGVERSIONSTRING        APPNAME " " SHORTVERSIONSTRING ", " COPYRIGHTNOTICE
  60.  
  61. // open kinds
  62. #define READONLYDOC        "SimpleText read-only document",
  63. #define PICTDOC            "SimpleText picture",
  64. #define MOVIEDOC        "SimpleText movie",
  65. #define PRINTDOC        "SimpleText print document",
  66. #define PDDDOC            "portable digital document",
  67. #define STATIONERYDOC    "SimpleText stationery file",
  68. #define TEXTDOC            "SimpleText text document"
  69.  
  70.  
  71. // Window titles
  72. #define FIRSTNEWDOCUMENTTITLE    "untitled"
  73. #define NEWDOCUMENTTITLE        "untitled ^0"
  74. #define ABOUTBOXTITLE            "About " APPNAME "…"
  75. #define CLIPBOARDTITLE            "Clipboard"
  76.  
  77. // Misc strings
  78. #define ABOUTSTRING1            APPNAME
  79. #define ABOUTSTRING2            "sample code"
  80. #define ABOUTSTRING3            "demonstrates features of the"
  81. #define ABOUTSTRING4            "Carbon High Level Toolbox"
  82. #define ABOUTSTRING5            COPYRIGHTNOTICE
  83. #define ABOUTSTRING6            "Version " SHORTVERSIONSTRING
  84. #define CLIPBOARDNONESTRING        "Clipboard contents: none"
  85. #define CLIPBOARDUNKNOWNSTRING    "Clipboard contents: unknown type"
  86. #define CLIPBOARDPICTSTRING        "Clipboard contents: picture"
  87. #define CLIPBOARDTEXTSTRING        "Clipboard contents: text"
  88. #define CLIPBOARDHIDE            "Hide Clipboard"
  89. #define CLIPBOARDSHOW            "Show Clipboard"
  90. #define TEXTSAVEPROMPT            "Save this document as:"
  91. #define TEXTSAVEBUTTON            "Save"
  92. #define TEXTCANCELBUTTON        "Cancel"
  93. #define TEXTEJECTBUTTON            "Eject"
  94. #define TEXTDESKTOPBUTTON        "Desktop"
  95. #define TEXTSTATIONERY            "To save this document as a stationery pad (a template document) click this button before clicking the Save button."
  96. #define TEXTSTATIONERYSELECTED    "When this button is selected, the document you are saving will be saved as a stationery pad (a template document)."
  97. #define TEXTDOCUMENT            "To save your document as a "APPNAME" document, click this button."
  98. #define TEXTDOCUMENTSELECTED    "When this button is selected, your document will be saved as a "APPNAME" document."
  99. #define TEXTPICTMARKER1            "\$CA"
  100. #define TEXTPICTMARKER2            ""
  101. #define HELPMENUCOMMAND            "?"
  102.  
  103. // Save changes alert strings
  104. #define SAVESAVEBUTTON            "Save"
  105. #define SAVECANCELBUTTON        "Cancel"
  106. #define SAVEDONTSAVEBUTTON        "Don’t Save"
  107. #define SAVEBUTTONSHORTCUTS        "Dd"
  108. #define SAVESTATICTEXT            "Save changes to the document “^0” before closing?"
  109.  
  110. // Go to page alert strings
  111. #define GOTOOKBUTTON            "OK"
  112. #define GOTOCANCELBUTTON        "Cancel"
  113. #define GOTOSTATICTEXT            "Go to page"
  114. #define GOTOOFSTATICTEXT        "of ^0."
  115. #define GOTOPAGESLIDERSTRING    "Go to page: "
  116. #define PAGELABELSTRING            "^0 of ^1 (^2%)"
  117.  
  118. // Find/Replace alert strings
  119. #define FINDBUTTON                "Find"
  120. #define FINDCANCELBUTTON        "Cancel"
  121. #define REPLACEBUTTON            "Replace"
  122. #define REPLACEALLBUTTON        "Replace All"
  123. #define FINDCASESENSITIVE        "Case Sensitive"
  124. #define FINDWRAPAROUND            "Wrap–Around Search"
  125. #define FINDSTATIC                "Find what?"
  126. #define REPLACESTATIC            "Replace with what?"
  127.  
  128. // Error alerts
  129. #define ERROKBUTTON            "OK"
  130. #define ERRCANCELBUTTON        "Cancel"
  131. #define ERRSTARTUPVERSION    APPNAME " requires System 7 in order to run."
  132. #define ERRSTARTUPFAILED    APPNAME " is unable to run because of a serious error."
  133. #define ERRNEWFAILEDRAM        APPNAME" cannot make a new document because there is not enough memory."
  134. #define ERROPENFAILED        APPNAME" cannot open this document. It may be in use by someone else."
  135. #define ERRSAVEFAILED        APPNAME" cannot save this document. This disk may be full or locked, or the file may be locked."
  136. #define ERRMODFAILED        "You cannot modify this document; you can only look at it."
  137. #define ERRSETUPFAILED        APPNAME" is unable to setup the page for this document. Please use the Chooser to select a printer."
  138. #define ERRPRINTMEM            APPNAME" cannot print this document because there is not enough memory."
  139. #define ERRPAGESETUPMEM        APPNAME" cannot perform a Page Setup for this document because there is not enough memory."
  140. #define ERRPRINTDISKFULL    APPNAME" cannot print this document because there is not enough room available on the hard disk."
  141. #define ERRPRINTTYPE        APPNAME" cannot print this kind of document."
  142. #define ERRPRINTFAILED        APPNAME" is unable to print this document. Please use the Chooser to select a printer."
  143. #define ERROPENSIZE            "This document is too large to be opened by "APPNAME"."
  144. #define ERRPASTESIZE        "This document is too large to accept the text from the clipboard."
  145. #define ERRTYPESIZE            "This document is too large to accept any more text."
  146. #define ERRSIZECHANGE        "Your requested change would cause this document to become too long."
  147. #define ERROPENTYPE            APPNAME" cannot display this kind of document."
  148. #define ERRCOPYTOOBIG        APPNAME" cannot copy from this document, the selection is too large."
  149. #define ERRSAVETYPE            APPNAME" cannot replace a different kind of document."
  150. #define ERROPENOUTOFMEM        APPNAME" cannot display this document because there is not enough memory."
  151. #define ERROPENDRAW            APPNAME" cannot display this document because an error occurred while drawing."
  152. #define ERROPENPS            APPNAME" may not be able to display this document properly because it contains PostScript®."
  153. #define ERROPENNOPAGES        APPNAME" cannot display this document because it contains no pages."
  154. #define ERRRECORDFULL        APPNAME" cannot record at this moment because there is not enough memory."
  155. #define ERRRECORDERR        APPNAME" cannot record at this moment.  Another application may be using Sound Input."
  156. #define ERRSPEAKFULL        "There is not enough memory to speak.  Try increasing " APPNAME "'s partition size."
  157. #define ERRSPEAKERR            "An error occurred when " APPNAME " tried to speak."
  158. #define ERRCHANGEVOICE        APPNAME " is unable to change to the new voice.  Try increasing " APPNAME "'s partition size."
  159. #define ERROPENANOTHERFAILED        APPNAME " is unable to open another document at this time.  Cancel the current Print or Page Setup dialog and try again."
  160. #define ERRPRINTANOTHERFAILED        APPNAME " is unable to print another document at this time.  Cancel the current Print or Page Setup dialog and try again."
  161.  
  162. // Apple menu strings
  163. #define ABOUTITEM                "About " APPNAME "…"
  164.  
  165. // File menu strings
  166. #define FILEMENU                "File"
  167. #define FILENEWITEM                "New"
  168.     #define FILENEWKEY                "N"
  169. #define FILEOPENITEM            "Open…"
  170.     #define FILEOPENKEY                "O"
  171. #define FILECLOSEITEM            "Close"
  172.     #define FILECLOSEKEY            "W"
  173. #define FILESAVEITEM            "Save"
  174.     #define FILESAVEKEY                "S"
  175. #define FILESAVEASITEM            "Save As…"
  176.     #define FILESAVEASKEY            nokey
  177. #define FILEPAGESETUPITEM        "Page Setup…"
  178.     #define FILEPAGESETUPKEY        nokey
  179. #define FILEPRINTITEM            "Print…"
  180.     #define FILEPRINTKEY            "P"
  181. #define FILEPRINTONECOPYITEM    "Print One Copy"
  182.     #define FILEPRINTONECOPYKEY        nokey
  183. #define FILEQUITITEM            "Quit"
  184.     #define FILEQUITKEY                "Q"
  185.  
  186. // Edit menu strings
  187. #define EDITMENU                "Edit"
  188. #define EDITUNDOITEM            "Undo"
  189.     #define EDITUNDOKEY                "Z"
  190. #define EDITCUTITEM                "Cut"
  191.     #define EDITCUTKEY                "X"
  192. #define EDITCOPYITEM            "Copy"
  193.     #define EDITCOPYKEY                "C"
  194. #define EDITPASTEITEM            "Paste"
  195.     #define EDITPASTEKEY            "V"
  196. #define EDITCLEARITEM            "Clear"
  197.     #define EDITCLEARKEY            nokey
  198. #define EDITSELECTALLITEM        "Select All"
  199. #define EDITSELECTNONEITEM        "Remove Selection"
  200.     #define EDITSELECTALLKEY        "A"
  201.  
  202. #define FINDITEM                "Find…"
  203.     #define FINDKEY                    "F"
  204. #define FINDAGAINITEM            "Find Again"
  205.     #define FINDAGAINKEY            "G"
  206. #define FINDSELECTIONITEM        "Find Selection"
  207.     #define FINDSELECTIONKEY        "H"
  208. #define REPLACEITEM                "Replace…"
  209.     #define REPLACEKEY                "R"
  210. #define REPLACEAGAINITEM        "Replace Again"
  211.     #define REPLACEAGAINKEY            "D"
  212.  
  213. #define EXECUTEITEM                "Execute"    // for AppleScript
  214.     #define EXECUTEKEY            "="        // for AppleScript
  215.  
  216. #define EDITNEXTPAGEITEM        "Next Page"
  217.     #define EDITNEXTPAGEKEY            "="
  218. #define EDITPREVPAGEITEM        "Previous Page"
  219.     #define EDITPREVPAGEKEY            "-"
  220. #define EDITGOTOPAGEITEM        "Go to Page…"
  221.     #define EDITGOTOPAGEKEY            nokey
  222. #define EDITSHOWCLIPBOARDITEM    "Show Clipboard  "
  223.     #define EDITSHOWCLIPBOARDKEY    nokey
  224.  
  225. // Font menu strings
  226. #define FONTMENU                "Font"
  227.  
  228. // Size menu strings
  229. #define SIZEMENU                "Size"
  230. #define SIZE9POINT                "9 Point"
  231.     #define SIZE9POINTKEY            nokey
  232. #define SIZE10POINT                "10 Point"
  233.     #define SIZE10POINTKEY            nokey
  234. #define SIZE12POINT                "12 Point"
  235.     #define SIZE12POINTKEY            nokey
  236. #define SIZE14POINT                "14 Point"
  237.     #define SIZE14POINTKEY            nokey
  238. #define SIZE18POINT                "18 Point"
  239.     #define SIZE18POINTKEY            nokey
  240. #define SIZE24POINT                "24 Point"
  241.     #define SIZE24POINTKEY            nokey
  242. #define SIZE36POINT                "36 Point"
  243.     #define SIZE36POINTKEY            nokey
  244.     
  245. // Style menu strings
  246. #define STYLEMENU                "Style"
  247. #define STYLEPLAIN                "Plain Text"
  248.     #define STYLEPLAINKEY            "T"
  249. #define STYLEBOLD                "Bold"
  250.     #define STYLEBOLDKEY            "B"
  251. #define STYLEITALIC                "Italic"
  252.     #define STYLEITALICKEY            "I"
  253. #define STYLEUNDERLINE            "Underline"
  254.     #define STYLEUNDERLINEKEY        "U"
  255. #define STYLEOUTLINE            "Outline"
  256.     #define STYLEOUTLINEKEY            nokey
  257. #define STYLESHADOW                "Shadow"
  258.     #define STYLESHADOWKEY            nokey
  259. #define STYLECONDENSED            "Condensed"
  260.     #define STYLECONDENSEDKEY        nokey
  261. #define STYLEEXTENDED            "Extended"
  262.     #define STYLEEXTENDEDKEY        nokey
  263.  
  264. // Sound menu strings
  265. #define SOUNDMENU                "Sound"
  266. #define SOUNDRECORDITEM            "Record…"
  267.     #define SOUNDRECORDKEY            nokey
  268. #define SOUNDPLAYITEM            "Play"
  269.     #define SOUNDPLAYKEY            nokey
  270. #define SOUNDERASEITEM            "Erase"
  271.     #define SOUNDERASEKEY            nokey
  272. #define SOUNDSPEAKSELECTIONITEM    "Speak Selection"
  273. #define SOUNDSPEAKALLITEM        "Speak All"
  274.     #define SOUNDSPEAKKEY            "J"
  275. #define SOUNDSTOPSPEAKINGITEM    "Stop Speaking"
  276.     #define SOUNDSTOPSPEAKINGKEY    "."
  277. #define SOUNDVOICESITEM            "Voices"
  278.     #define SOUNDVOICESKEY            nokey
  279. #define NOVOICESITEM            "None"
  280.     #define NOVOICESKEY            nokey
  281.     
  282.     
  283. // items in the GX pop up menu
  284. #define GXPOPUPMENU                "Display Options"
  285.  
  286. #define GXFIFTY                    "50%"
  287. #define GXONEHUNDRED            "100%"
  288. #define GXONEHUNDREDTWELVE        "112%"
  289. #define GXONEHUNDREDFIFTY        "150%"
  290. #define GXTWOHUNDRED            "200%"
  291. #define GXFOURHUNDRED            "400%"
  292. #define GXSCALETOFIT            "Scale image to fit window"
  293. #define GXDONTSHOWMARGINS        "Don’t show margins"
  294.  
  295. // Balloon Help Strings
  296. #define FINDERHELPSTRING    APPNAME "\n\n" "This is a simple application program that you can use to view Read Me files, text files, movies, 3D files, and certain graphics files, and to write letters and memos."
  297.  
  298. // Apple menu help
  299. #define HELPABOUTITEM        "Displays information about the version of the "APPNAME" application."
  300.  
  301. // File menu help
  302. #define HELPFILEMENU        "File menu\n\nUse this menu to open, close, save, and print "APPNAME" documents, and to quit "APPNAME"."
  303. #define HELPNEWE            "Opens a new "APPNAME" document called “untitled.”"
  304. #define HELPNEWD            "Opens a new "APPNAME" document called “untitled.”  Not available because there is a dialog box on the screen."
  305. #define HELPOPENE            "Displays a dialog box that allows you to select an existing "APPNAME" document to open."
  306. #define HELPOPEND            "Displays a dialog box that allows you to select an existing "APPNAME" document to open.  Not available because there is a dialog box on the screen."
  307. #define HELPCLOSEE            "Closes the open "APPNAME" document or window."
  308. #define HELPCLOSED            "Closes the open "APPNAME" document or window.  Not available because no "APPNAME" document is open."
  309. #define HELPSAVEE            "Saves the open "APPNAME" document.  If you have not saved the document before, a dialog box appears in which you assign a name to the document and indicate where to save it."
  310. #define HELPSAVED            "Saves the open "APPNAME" document.  Not available because no "APPNAME" document is open, because no changes have been made to the open document, or because the open document is a special type that cannot be changed or saved."
  311. #define HELPSAVEASE            "Displays a dialog box in which you can assign a name to the document and indicate where to save it."
  312. #define HELPSAVEASD            "Displays a dialog box in which you can name and save the open document.  Not available because no "APPNAME" document is open, because no changes have been made to the open document, or because the open document is a special type that cannot be changed."
  313. #define HELPPAGESETUPE        "Displays a dialog box in which you can select paper size, orientation, and other printing options."
  314. #define HELPPAGESETUPD        "Displays a dialog box in which you can select paper size, orientation, and other printing options.  Not available because the current window cannot be printed."
  315. #define HELPPRINTE            "Displays a dialog box in which you can specify the number of copies you want to print and other printing options."
  316. #define HELPPRINTD            "Displays a dialog box in which you can specify the number of copies you want to print and other printing options.  Not available because no "APPNAME" document is open or because the open "APPNAME" document is empty."
  317. #define HELPPRINTONEE        "Prints a single copy of the "APPNAME" document."
  318. #define HELPPRINTONED        "Prints a single copy of the "APPNAME" document.  Not available because no "APPNAME" document is open or because the open "APPNAME" document is empty."
  319. #define HELPQUITE            "Quits the "APPNAME" application.  If you have not saved changes you made to the open document, you will be asked whether you want to save changes."
  320. #define HELPQUITD            "Quits the "APPNAME" application.  Not available because there is a dialog box on the screen."
  321.  
  322. // Edit menu help
  323. #define HELPEDITMENU        "Edit menu\n\nUse this menu to undo your last action, to manipulate text or graphics, to select the entire contents of a document, and to show what’s on the Clipboard."
  324. #define HELPUNDOE            "Undoes your last action. In "APPNAME", you can use this command to replace material you have cut or cleared or to remove material you have pasted or typed."
  325. #define HELPUNDOD            "Undoes your last action if it involved cutting, clearing, pasting, or typing. Not available now because your last action cannot be undone."
  326. #define HELPCUTE            "Removes the selected text or graphics and places it temporarily into a storage area called the Clipboard."
  327. #define HELPCUTD            "Removes the selected text or graphics and places it temporarily into a storage area called the Clipboard.  Not available now because nothing is selected."
  328. #define HELPCOPYE            "Copies the selected text or graphics.  The original selection remains where it is. The copy is placed temporarily into a storage area called the Clipboard."
  329. #define HELPCOPYD            "Copies the selected text or graphics. The original selection remains where it is. The copy is placed temporarily into a storage area called the Clipboard. The command is not available now because nothing is selected."
  330. #define HELPPASTEE            "Inserts the contents of the Clipboard at the location of the insertion point."
  331. #define HELPPASTED            "Inserts the contents of the Clipboard at the location of the insertion point. Not available because there is nothing on the Clipboard or because the contents of the Clipboard are of a type "APPNAME" can’t read."
  332. #define HELPCLEARE            "Removes the selected text or graphics without storing it on the Clipboard."
  333. #define HELPCLEARD            "Removes the selected text or graphics without storing it on the Clipboard.  Not available now because nothing is selected."
  334. #define HELPSELECTALLE        "Selects or deselects (for pictures) the entire contents of the open "APPNAME" document."
  335. #define HELPSELECTALLD        "Selects or deselects (for pictures) the entire contents of the open "APPNAME" document.  Not available now because no "APPNAME" document is open or because the open document is empty."
  336. #define HELPNEXTPAGEE        "Displays the next page in the document."
  337. #define HELPNEXTPAGED        "Displays the next page in the document.  Disabled because this document contains no additional pages."
  338. #define HELPPREVPAGEE        "Displays the previous page in the document."
  339. #define HELPPREVPAGED        "Displays the previous page in the document.  Disabled because this document contains no additional pages."
  340. #define HELPGOTOPAGEE        "Displays the specified page in the document."
  341. #define HELPGOTOPAGED        "Displays the specified page in the document.  Disabled because this type of document contains no additional pages, or does not support this command."
  342. #define HELPSHOWCLIPBOARDE    "Displays the contents of the Clipboard (a storage area for the last item cut or copied)."
  343. #define HELPHIDECLIPBOARDE    "Closes the Clipboard window."
  344.  
  345. #define HELPFINDE            "Allows you to search the current window for particular text."
  346. #define HELPFINDD            "Allows you to search the current window for particular text.  Disabled because the current window is not searchable."
  347. #define HELPFINDAGAINE        "Searches the current window for another occurrence of the found text."
  348. #define HELPFINDAGAIND        "Searches the current window for another occurrence of the found text.  Disabled because the current window is not searchable, or because you have not entered text to find."
  349. #define HELPFINDSELECTIONE    "Allows you to search the current window for another occurrence of the selected text."
  350. #define HELPFINDSELECTIOND    "Allows you to search the current window for another occurrence of the selected text.  Disabled because the current window is not searchable, or because no text is currently selected."
  351. #define HELPREPLACEE        "Allows you to search the current window for particular text and replace it."
  352. #define HELPREPLACED        "Allows you to search the current window for particular text and replace it.  Disabled because the current window is not searchable."
  353. #define HELPREPLACEAGAINE    "Searches the current window for another occurrence of the found text and replaces it."
  354. #define HELPREPLACEAGAIND    "Searches the current window for another occurrence of the found text and replaces it.  Disabled because the current window is not searchable, or because you have not entered text to replace."
  355.  
  356. // Font menu help
  357. #define HELPFONTMENUE        "Font menu\n\nUse this menu to change the font used for text in a document."
  358. #define HELPFONTMENUD        "Font menu\n\nUse this menu to change the font used for text in a document.  Not available because the active document is not a text document."
  359. #define HELPFONTITEME        "To use this font in the active document, choose it from this menu."
  360. #define HELPFONTITEMD        "To use this font in the active document, choose it from this menu.  Not available because the active document is not a text document."
  361. #define HELPFONTITEMC        "This is the currently selected font.  To change to another font, choose one from this menu."
  362.  
  363. // Style menu help
  364. #define HELPSTYLEMENUE        "Style menu\n\nUse this menu to change the style used for text in a document."
  365. #define HELPSTYLEMENUD        "Style menu\n\nUse this menu to change the style used for text in a document.  Not available because the active document is not a text document."
  366. #define HELPSTYLEITEME        "To use this style in the active document, choose it from this menu."
  367. #define HELPSTYLEITEMD        "To use this style in the active document, choose it from this menu.  Not available because the active document is not a text document."
  368. #define HELPSTYLEITEMC        "This is the currently selected style.  To change to another style, choose one from this menu."
  369.  
  370. // Size menu help
  371. #define HELPSIZEMENUE        "Size menu\n\nUse this menu to change the font size used for text in a document."
  372. #define HELPSIZEMENUD        "Size menu\n\nUse this menu to change the font size used for text in a document.  Not available because the active document is not a text document."
  373. #define HELPSIZEITEME        "To use this font size in the active document, choose it from this menu."
  374. #define HELPSIZEITEMD        "To use this font size in the active document, choose it from this menu.  Not available because the active document is not a text document."
  375. #define HELPSIZEITEMC        "This is the currently selected font size.  To change to another size, choose one from this menu."
  376.  
  377. // Sound menu help
  378. #define HELPSOUNDMENU        "Sound menu\n\nUse this menu to record, play, or erase a voice annotation, or to hear the current text spoken."
  379. #define HELPRECORDE            "Allows you to record a new voice annotation."
  380. #define HELPRECORDD            "Allows you to record a new voice annotation. Not available because there is already a recorded voice annotation, your Macintosh does not support sound input, or this is a read–only document."
  381. #define HELPPLAYE            "Plays the voice annotation."
  382. #define HELPPLAYD            "Plays the voice annotation. Not available because there is no recorded voice annotation."
  383. #define HELPERASEE            "Erases the current voice annotation so that you can record a new one."
  384. #define HELPERASED            "Erases the current voice annotation so that you can record a new one. Not available because there is no recorded voice annotation, or this is a read–only document."
  385. #define HELPSPEAKALLE        "Speaks all the text in the document aloud, using the currently checked voice from the Voices submenu, below."
  386. #define HELPSPEAKALLD        "Speaks text aloud.  Not available, because Text-To-Speech is not installed, this document cannot be spoken, or there is not enough memory to speak (increase " APPNAME "'s partition size)."
  387. #define HELPSPEAKSELECTIONE    "Speaks the currently selected text aloud, using the currently checked voice from the Voices submenu, below."
  388. #define HELPSPEAKSELECTIOND    "Speaks the currently selected text aloud.  Not available, because Text-To-Speech is not installed, this document cannot be spoken, or there is not enough memory to speak (increase " APPNAME "'s partition size)."
  389. #define HELPSTOPSPEAKINGE    "Quiets the speaking you hear right now."
  390. #define HELPSTOPSPEAKINGD    "Quiets any speaking you started.  Not available because there is nothing being spoken at the moment."
  391. #define HELPVOICESE            "Has submenu which allows you to pick the voice used when speaking."
  392. #define HELPVOICESD            "Has submenu which allows you to pick which voice to speak with.  Not available now because speech is not available.  Either speech is not installed or there is not enough memory to speak (increase " APPNAME "'s partition size)."
  393. #define HELPVOICESELE        "One of the possible voices to speak with.  Choose this item to speak with this voice next time you speak."
  394. #define HELPVOICESELC        "The voice that will be used to speak with next time you speak."
  395.  
  396. // Window content help
  397. #define HELPACTIVESCROLL    "Scroll bar\n\nTo scroll a little at a time, press one of the scroll arrows.  To scroll by the windowful, click in the gray bar.  To scroll to another part of the window, drag the scroll box."
  398. #define HELPDIMHORIZSCROLL    "Scroll bar\n\nUse the scroll bar to see items that are out of view.  This scroll bar is not available because this window contains no items to the left or right of the window’s borders."
  399. #define HELPDIMVERTSCROLL    "Scroll bar\n\nUse the scroll bar to see items that are out of view.  This scroll bar is not available because this window contains no items above or below the window’s borders."
  400. #define HELPGROWBOX            "Size box\n\nTo change the height and width of the window, drag the size box."
  401. #define HELPGENERICCONTENT    "This is a document window.  You cannot type or edit material in this document because the document is a read-only document."
  402. #define HELPPICTCONT        "This is a document window — the area in which you can view and copy images from the "APPNAME" picture document."
  403. #define HELPPICTSEL            "The area inside this rectangle is selected.  You can copy the selected area to the Clipboard by choosing Copy from the Edit menu."
  404. #define HELPTEXTCONT        "This is a document window — the area in which you can type and edit text."
  405.